home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / program / dtswps.zip / DTSFILES.ZIP / EXAMPLE / INSTALL.CMD < prev    next >
OS/2 REXX Batch file  |  1996-06-27  |  413b  |  15 lines

  1. /* */
  2. call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
  3. call SysLoadFuncs
  4.  
  5. parse arg libdir
  6. if (libdir = "")
  7.   then say '-- specify a directory in the libpath to copy ex1.dll there'
  8. else
  9.   'copy ex1.dll' libdir
  10.  
  11. if SysCreateObject("EX1","Ex1 Folder","<WP_DESKTOP>","OBJECTID=<AnEx1>")
  12.    then say 'Ex1 Folder installed on desktop'
  13. else
  14.    say 'Failed to create EX1 instance on the desktop'
  15.